home *** CD-ROM | disk | FTP | other *** search
- # SpamAssassin basic config file
- #
- # Please don't modify this file as your changes will be overwritten with
- # the next update. Use @@LOCAL_RULES_DIR@@/local.cf instead.
- # See 'perldoc Mail::SpamAssassin::Conf' for details.
- #
- # This program is free software; you can redistribute it and/or modify
- # it under the terms of either the Artistic License or the GNU General
- # Public License as published by the Free Software Foundation; either
- # version 1 of the License, or (at your option) any later version.
- #
- # See the file "License" in the top level of the SpamAssassin source
- # distribution for more details.
- #
- ###########################################################################
-
- # Default template. Try to keep it under 78 columns (inside the the dots below).
- # ........................................................................
- clear_report_template
- report SAproxy Pro has identified this email as Spam.
- report
- report PREVIEW OF SPAM MESSAGE
- report ***********************************************************************
- report _PREVIEW_
- report ***********************************************************************
- report
- report The original message has been attached to this report so you can view it
- report (if it isn't spam) or block similar emails in the future.
- report
- report
- report Content analysis details: (_HITS_ points, _REQD_ required)
- report
- report " pts rule name description"
- report ---- ---------------------- --------------------------------------------------
- report _SUMMARY_
- # ........................................................................
-
- # A 'contact address' users should contact for more info. (replaces
- # _CONTACTADDRESS_ above if present)
- report_contact @@CONTACT_ADDRESS@@
-
-
- ###########################################################################
- # and now, a template for spam-trap responses. If the first few lines
- # begin with "Xxxxxx: " where Xxxxxx is a header, they'll be used as
- # headers.
-
- clear_spamtrap_template
- spamtrap Subject: this address is no longer available
-
- spamtrap [this message has been automatically generated]
- spamtrap
- spamtrap Please note that this address is no longer in use, and nowadays
- spamtrap receives nothing but unsolicited commercial mail. Accordingly,
- spamtrap any mail sent to it is added to several spam-tracking databases,
- spamtrap then automatically deleted.
- spamtrap
- spamtrap If you genuinely want to contact the owner of the address, please
- spamtrap re-check your contact lists, or search the web, to find their
- spamtrap current e-mail address.
- spamtrap
- spamtrap The mail you sent is reproduced in full below, for resending to
- spamtrap the correct address. Sorry for the inconvenience!
- spamtrap
- spamtrap [-- Signed: the SpamAssassin mail filter]
- spamtrap
-
- ###########################################################################
-
- # Unsafe-for-viewing message report template.
- #
- # ......................................................................
- clear_unsafe_report_template
- unsafe_report The original message was not completely plain text, and may be unsafe to
- unsafe_report open with some email clients; in particular, it may contain a virus,
- unsafe_report or confirm that your address can receive spam. If you wish to view
- unsafe_report it, it may be safer to save it to a file and open it with an editor.
- # ......................................................................
-
- ###########################################################################
- # Database configuration options.
- #
- # user_scores_dsn MUST be in the form:
- # DBI:databasetype:databasename:hostname:port
- # ex. DBI:mysql:spamassassin:localhost
- #
- # user_scores_sql_username is the authorized username to connect to DSN
- # user_scores_sql_password is the password for the database username
-
- #user_scores_dsn DBI:mysql:spamassassin:localhost
- #user_scores_sql_username spam
- #user_scores_sql_password spamfilter
-
- ###########################################################################
- # Automatic-whitelist directory, for the default db-based whitelist
- # backend. By default, each user has their own, in their ~/spamassassin
- # directory with mode 0600, but for system-wide SpamAssassin use, you may
- # want to share this across all users; uncomment and customise the below
- # lines. (Make sure the mode has --x bits set.)
-
- # auto_whitelist_factor 0.5
-
- # default: per-user whitelist:
- # auto_whitelist_path ~/spamassassin/auto-whitelist
- # auto_whitelist_file_mode 0600
-
- # use this for a system-wide whitelist:
- # auto_whitelist_path /var/spool/spamassassin/auto-whitelist
- # auto_whitelist_file_mode 0666
-
- ##########################################################################
- # Headers to be added to mail (can be overriden by users in
- # ~/spamassassin/user_prefs)
- # Make sure the header stays entirely on one line here
-
- clear_headers
-
- #X-Spam-Checker-Version: SpamAssassin 2.60-cvs (1.188-2003-05-24-exp)
- add_header all Checker-Version SpamAssassin _VERSION_ (_SUBVERSION_) (SAProxy Pro 2.5) on _HOSTNAME_
-
- #X-Spam-Flag: YES
- add_header spam Flag _YESNOCAPS_
-
- #X-Spam-Level: *************
- add_header all Level _STARS(*)_
-
- #X-Spam-Status: Yes, hits=14.0 required=5.0 tests=BAYES_99,CALL_FREE
- # DATE_IN_PAST_12_24,DCC_CHECK,DRASTIC_REDUCED,FROM_HAS_MIXED_NUMS
- # FROM_HAS_MIXED_NUMS3,HOME_EMPLOYMENT,INVALID_DATE,INVALID_MSGID
- # LINES_OF_YELLING,MSGID_HAS_NO_AT,NO_REAL_NAME,ONCE_IN_LIFETIME
- # REMOVE_SUBJ,SMTPD_IN_RCVD,T_INVALID_DATE_2,T_INVALID_DATE_HMS
- # UNDISC_RECIPS autolearn=spam version=2.60-cvs
- add_header all Status "_YESNO_, hits=_HITS_ required=_REQD_ tests=_TESTS_ autolearn=_AUTOLEARN_ version=_VERSION_"
-
- ###########################################################################
- # Default prefs values: users can override these in their
- # ~/spamassassin/user_prefs files.
-
- # How many hits before a mail is considered spam.
- required_hits 5
-
- # Mail using locales used in these country codes will not be marked
- # as being possibly spam in a foreign language.
- ok_locales all
-
- # Mail using languages used in these country codes will not be marked
- # as being possibly spam in a foreign language. This is an expensive
- # test, so it is set to "all" so the test will not be used by default.
- ok_languages all
-
- # Mail which scores outside this range will be fed back into SpamAssassin's
- # learning system automatically, to train the Bayesian scanner.
- bayes_auto_learn_threshold_nonspam 0.1
- bayes_auto_learn_threshold_spam 12.0
-
- # Set this to 0 to turn off auto-learning.
- bayes_auto_learn 1
-
- # report_safe controls the markup of spam. If you set it to 0, the message
- # body of spam messages will not be modified
- report_safe 1
-
- # Some common prefs settings can be set here, to take effect site-wide
- # unless the user override them. See the user_prefs.template file for
- # explanations.
-
- # rewrite_subject 0
- # subject_tag *****SPAM*****
- # skip_rbl_checks 0
- # check_mx_attempts 2
- # check_mx_delay 5
-
-